#!/bin/bash
APP_DIR="$(cd "$(dirname "$0")/../.." && pwd)"
LAUNCHER="$APP_DIR/Contents/Resources/Program Files/Start Liberty Raceworks.command"

if [ ! -x "$LAUNCHER" ]; then
  /bin/chmod +x "$LAUNCHER"
fi

/usr/bin/open "$LAUNCHER"
